home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / reconvert.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  6KB  |  200 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Convert old ("regex") regular expressions to new syntax ("re").
  5.  
  6. When imported as a module, there are two functions, with their own
  7. strings:
  8.  
  9.   convert(s, syntax=None) -- convert a regex regular expression to re syntax
  10.  
  11.   quote(s) -- return a quoted string literal
  12.  
  13. When used as a script, read a Python string literal (or any other
  14. expression evaluating to a string) from stdin, and write the
  15. translated expression to stdout as a string literal.  Unless stdout is
  16. a tty, no trailing \\n is written to stdout.  This is done so that it
  17. can be used with Emacs C-U M-| (shell-command-on-region with argument
  18. which filters the region through the shell command).
  19.  
  20. No attempt has been made at coding for performance.
  21.  
  22. Translation table...
  23.  
  24.     \\(    (     (unless RE_NO_BK_PARENS set)
  25.     \\)    )     (unless RE_NO_BK_PARENS set)
  26.     \\|    |     (unless RE_NO_BK_VBAR set)
  27.     \\<    \\b    (not quite the same, but alla...)
  28.     \\>    \\b    (not quite the same, but alla...)
  29.     \\`    \\A
  30.     \\\'    \\Z
  31.  
  32. Not translated...
  33.  
  34.     .
  35.     ^
  36.     $
  37.     *
  38.     +           (unless RE_BK_PLUS_QM set, then to \\+)
  39.     ?           (unless RE_BK_PLUS_QM set, then to \\?)
  40.     \\
  41.     \\b
  42.     \\B
  43.     \\w
  44.     \\W
  45.     \\1 ... \\9
  46.  
  47. Special cases...
  48.  
  49.     Non-printable characters are always replaced by their 3-digit
  50.     escape code (except \\t, \\n, \\r, which use mnemonic escapes)
  51.  
  52.     Newline is turned into | when RE_NEWLINE_OR is set
  53.  
  54. XXX To be done...
  55.  
  56.     [...]     (different treatment of backslashed items?)
  57.     [^...]    (different treatment of backslashed items?)
  58.     ^ $ * + ? (in some error contexts these are probably treated differently)
  59.     \\vDD  \\DD (in the regex docs but only works when RE_ANSI_HEX set)
  60.  
  61. '''
  62. import warnings
  63. warnings.filterwarnings('ignore', '.* regex .*', DeprecationWarning, __name__, append = 1)
  64. import regex
  65. from regex_syntax import *
  66. __all__ = [
  67.     'convert',
  68.     'quote']
  69. mastertable = {
  70.     '\\<': '\\b',
  71.     '\\>': '\\b',
  72.     '\\`': '\\A',
  73.     "\\'": '\\Z',
  74.     '\\(': '(',
  75.     '\\)': ')',
  76.     '\\|': '|',
  77.     '(': '\\(',
  78.     ')': '\\)',
  79.     '|': '\\|',
  80.     '\t': '\\t',
  81.     '\n': '\\n',
  82.     '\r': '\\r' }
  83.  
  84. def convert(s, syntax = None):
  85.     """Convert a regex regular expression to re syntax.
  86.  
  87.     The first argument is the regular expression, as a string object,
  88.     just like it would be passed to regex.compile().  (I.e., pass the
  89.     actual string object -- string quotes must already have been
  90.     removed and the standard escape processing has already been done,
  91.     e.g. by eval().)
  92.  
  93.     The optional second argument is the regex syntax variant to be
  94.     used.  This is an integer mask as passed to regex.set_syntax();
  95.     the flag bits are defined in regex_syntax.  When not specified, or
  96.     when None is given, the current regex syntax mask (as retrieved by
  97.     regex.get_syntax()) is used -- which is 0 by default.
  98.  
  99.     The return value is a regular expression, as a string object that
  100.     could be passed to re.compile().  (I.e., no string quotes have
  101.     been added -- use quote() below, or repr().)
  102.  
  103.     The conversion is not always guaranteed to be correct.  More
  104.     syntactical analysis should be performed to detect borderline
  105.     cases and decide what to do with them.  For example, 'x*?' is not
  106.     translated correctly.
  107.  
  108.     """
  109.     table = mastertable.copy()
  110.     if syntax is None:
  111.         syntax = regex.get_syntax()
  112.     
  113.     if syntax & RE_NO_BK_PARENS:
  114.         del table['\\(']
  115.         del table['\\)']
  116.         del table['(']
  117.         del table[')']
  118.     
  119.     if syntax & RE_NO_BK_VBAR:
  120.         del table['\\|']
  121.         del table['|']
  122.     
  123.     if syntax & RE_BK_PLUS_QM:
  124.         table['+'] = '\\+'
  125.         table['?'] = '\\?'
  126.         table['\\+'] = '+'
  127.         table['\\?'] = '?'
  128.     
  129.     if syntax & RE_NEWLINE_OR:
  130.         table['\n'] = '|'
  131.     
  132.     res = ''
  133.     i = 0
  134.     end = len(s)
  135.     while i < end:
  136.         c = s[i]
  137.         i = i + 1
  138.         if c == '\\':
  139.             c = s[i]
  140.             i = i + 1
  141.             key = '\\' + c
  142.             key = table.get(key, key)
  143.             res = res + key
  144.             continue
  145.         c = table.get(c, c)
  146.         res = res + c
  147.     return res
  148.  
  149.  
  150. def quote(s, quote = None):
  151.     '''Convert a string object to a quoted string literal.
  152.  
  153.     This is similar to repr() but will return a "raw" string (r\'...\'
  154.     or r"...") when the string contains backslashes, instead of
  155.     doubling all backslashes.  The resulting string does *not* always
  156.     evaluate to the same string as the original; however it will do
  157.     just the right thing when passed into re.compile().
  158.  
  159.     The optional second argument forces the string quote; it must be
  160.     a single character which is a valid Python string quote.
  161.  
  162.     '''
  163.     if quote is None:
  164.         q = "'"
  165.         altq = "'"
  166.         if q in s and altq not in s:
  167.             q = altq
  168.         
  169.     elif not quote in ('"', "'"):
  170.         raise AssertionError
  171.     q = quote
  172.     res = q
  173.     for c in s:
  174.         if c == q:
  175.             c = '\\' + c
  176.         elif c < ' ' or c > '~':
  177.             c = '\\%03o' % ord(c)
  178.         
  179.         res = res + c
  180.     
  181.     res = res + q
  182.     if '\\' in res:
  183.         res = 'r' + res
  184.     
  185.     return res
  186.  
  187.  
  188. def main():
  189.     '''Main program -- called when run as a script.'''
  190.     import sys as sys
  191.     s = eval(sys.stdin.read())
  192.     sys.stdout.write(quote(convert(s)))
  193.     if sys.stdout.isatty():
  194.         sys.stdout.write('\n')
  195.     
  196.  
  197. if __name__ == '__main__':
  198.     main()
  199.  
  200.